home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Interfaces&Libraries / Interfaces / PInterfaces / Packages.p < prev    next >
Encoding:
Text File  |  1995-07-06  |  1.6 KB  |  76 lines  |  [TEXT/MPS ]

  1. {
  2.      File:        Packages.p
  3.  
  4.      Contains:    Package Manager Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Package:    Universal Interfaces 2.1 in “MPW Latest” on ETO #18
  8.  
  9.      Copyright:    © 1984-1995 by Apple Computer, Inc.
  10.                  All rights reserved.
  11.  
  12.      Bugs?:        If you find a problem with this file, use the Apple Bug Reporter
  13.                  stack.  Include the file and version information (from above)
  14.                  in the problem description and send to:
  15.                      Internet:    apple.bugs@applelink.apple.com
  16.                      AppleLink:    APPLE.BUGS
  17.  
  18. }
  19.  
  20. {$IFC UNDEFINED UsingIncludes}
  21. {$SETC UsingIncludes := 0}
  22. {$ENDC}
  23.  
  24. {$IFC NOT UsingIncludes}
  25.  UNIT Packages;
  26.  INTERFACE
  27. {$ENDC}
  28.  
  29. {$IFC UNDEFINED __PACKAGES__}
  30. {$SETC __PACKAGES__ := 1}
  31.  
  32. {$I+}
  33. {$SETC PackagesIncludes := UsingIncludes}
  34. {$SETC UsingIncludes := 1}
  35.  
  36.  
  37. {$IFC UNDEFINED __TYPES__}
  38. {$I Types.p}
  39. {$ENDC}
  40. {    ConditionalMacros.p                                            }
  41.  
  42. {$PUSH}
  43. {$ALIGN MAC68K}
  44. {$LibExport+}
  45.  
  46. CONST
  47.     listMgr                        = 0;                            { list manager }
  48.     dskInit                        = 2;                            { Disk Initializaton }
  49.     stdFile                        = 3;                            { Standard File }
  50.     flPoint                        = 4;                            { Floating-Point Arithmetic }
  51.     trFunc                        = 5;                            { Transcendental Functions }
  52.     intUtil                        = 6;                            { International Utilities }
  53.     bdConv                        = 7;                            { Binary/Decimal Conversion }
  54.     editionMgr                    = 11;                            { Edition Manager }
  55.  
  56.  
  57. PROCEDURE InitPack(packID: INTEGER);
  58.     {$IFC NOT GENERATINGCFM}
  59.     INLINE $A9E5;
  60.     {$ENDC}
  61. PROCEDURE InitAllPacks;
  62.     {$IFC NOT GENERATINGCFM}
  63.     INLINE $A9E6;
  64.     {$ENDC}
  65.  
  66. {$ALIGN RESET}
  67. {$POP}
  68.  
  69. {$SETC UsingIncludes := PackagesIncludes}
  70.  
  71. {$ENDC} {__PACKAGES__}
  72.  
  73. {$IFC NOT UsingIncludes}
  74.  END.
  75. {$ENDC}
  76.